home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19961006-19970104 / 000048_news@columbia.edu _Wed Oct 23 16:10:26 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id QAA09915 for <kermit.misc@watsun.cc.columbia.edu>; Wed, 23 Oct 1996 16:10:26 -0400 (EDT)
  3. Received: (from news@localhost) by newsmaster.cc.columbia.edu (8.7.5/8.7.3) id QAA24318 for kermit.misc@watsun; Wed, 23 Oct 1996 16:10:25 -0400 (EDT)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: UUCP lock files in Linux Kermit
  8. Date: 23 Oct 1996 20:09:55 GMT
  9. Organization: Columbia University
  10. Lines: 18
  11. Message-ID: <54lu2j$emm@apakabar.cc.columbia.edu>
  12. References: <326E73E0.5B6ACDF4@vmrc.org>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <326E73E0.5B6ACDF4@vmrc.org>,
  16. Brian Showalter  <showalte@vmrc.org> wrote:
  17. : How do I tell Kermit where to find UUCP lock files?  It keeps looking in
  18. : /var/spool/uucp, and my Red Hat Linux keeps the lock files in /var/lock.
  19. : I've looked through all the help screens and man pages for a parameter to
  20. : set, but can't find anything.
  21. :
  22. /var/lock is where they are supposed to go according to the Linux File System
  23. Standard, but that didn't come until after early Linux releases had already
  24. started using /var/spool/uucp.  C-Kermit 5A(190) uses the latter by default.
  25. To make it use the former, do this:
  26.  
  27.   make clean
  28.   make linux KFLAGS=-DLINUXFSSTND
  29.  
  30. C-Kermit 6.0 (now in Beta) uses the newer convention by default.
  31.  
  32. - Frank